home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Workspace / Briefcase / Source / PrefDelegate.h < prev    next >
Text File  |  1992-02-28  |  320b  |  16 lines

  1. #import <objc/Object.h>
  2.  
  3. @interface PrefDelegate:Object
  4. {
  5.     id        owner;                // who to send messages to
  6.     id        saveAllSwitch;        // Save All upon qutting?
  7.     id        dumpAllSwitch;        // ignore dirty bits at Quit?
  8.     id        delayForm;            // How long before updating
  9. // Whatever outlets you need go here    
  10. }
  11.  
  12. - load:sender;
  13. - set:sender;
  14.  
  15. @end
  16.